home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland Pascal with Objects 7.0 / WINDEMOS.ZIP / WELCOME.PAS < prev    next >
Pascal/Delphi Source File  |  1992-10-27  |  947b  |  28 lines

  1. {************************************************}
  2. {                                                }
  3. {   Demo program                                 }
  4. {   Copyright (c) 1991 by Borland International  }
  5. {                                                }
  6. {************************************************}
  7.  
  8. program Welcome;
  9.  
  10. uses
  11.   WinCrt;  { Allows Writeln, Readln, cursor movement, etc. }
  12.  
  13. { WinCrt Demo Program
  14.  
  15.   (Press Ctrl-F9 to run this program.)
  16.  
  17.   This program demonstrates how to use the WinCrt unit to perform
  18.   "traditional" screen I/O. This is the easiest way to build text mode
  19.   programs that run in a window. For more information about the WinCrt
  20.   unit, refer to the Programmer's Guide. For information on writing more
  21.   advanced Windows applications, read about the ObjectWindows
  22.   application framework in the Windows Programming Guide.
  23. }
  24.  
  25. begin
  26.   Writeln('Welcome to Turbo Pascal for Windows');
  27. end.
  28.